projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f6b911
)
meson: Find libcairo-script-interpreter when cairo is a subproject
author
Kjell Ahlstedt
<kjellahlstedt@gmail.com>
Tue, 16 Mar 2021 08:52:13 +0000
(09:52 +0100)
committer
Kjell Ahlstedt
<kjellahlstedt@gmail.com>
Tue, 16 Mar 2021 10:47:28 +0000
(11:47 +0100)
If cairo is a subproject, it's not necessarily installed when gtk
is built. In the build tree, libcairo-script-interpreter is not stored
in the same directory as other cairo libraries.
gsk/meson.build
patch
|
blob
|
history
diff --git
a/gsk/meson.build
b/gsk/meson.build
index 8e2b0f1782d0e24f146e52b0e65ea0853723d6fe..24b6be14da5d8d69c1c5da23eacdd1503be5eed8 100644
(file)
--- a/
gsk/meson.build
+++ b/
gsk/meson.build
@@
-230,5
+230,5
@@
libgsk = static_library('gsk',
# "public" libgtk_dep used by internal executables.
libgsk_dep = declare_dependency(include_directories: [ confinc, ],
sources: [ gskenum_h, ],
- dependencies:
libgdk_dep
,
+ dependencies:
[libgdk_dep, cairo_csi_dep]
,
)